home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-01
/
snip0493.zip
/
DO.C
< prev
next >
Wrap
C/C++ Source or Header
|
1993-04-05
|
341b
|
18 lines
/*
** DO.C - a simple facility for specifying multiple commands
*/
#include <stdio.h>
#include <stdlib.h>
void main(int argc, char *argv[])
{
if (2 > argc)
{
puts("Usage: DO \"DOS command 1\" \"DOS command 2\" ...");
return;
}
while (--argc)
system(*++argv);
}